home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- if not "%1" =="" goto param
- echo Quinta will run from the floppy by entering
- echo A:QUINTA or by substituting another letter
- echo for your floppy drive. Otherwise it will be
- echo installed on your hard drive in a subdirectory
- echo called C:\QUINTA.
- echo.
- echo If you want to install on a drive other than
- echo C: press CONTROL C now and restart INSTALL
- echo with the drive letter after the INSTALL
- echo command. For example INSTALL D will install
- echo the program on D:\QUINTA.
- echo.
- pause
-
- md c:\quinta
- copy quinta.exe c:\quinta
- copy quinta.doc c:\quinta
- goto end
-
- :param
- md %1:\quinta
- copy quinta.exe %1:\quinta
- copy quinta.doc %1:\quinta
-
- :end
-
-
-